std::unordered_set::bucket_size
From Cppreference
< cpp | container | unordered set
| size_type bucket_size( size_type n ) const;
| (C++0x feature) | |
Returns the number of elements in the bucket with index n.
Contents |
Parameters
| n | - | the index of the bucket to examine |
Return value
the number of elements in the bucket n.
Complexity
constant
See also
| returns the number of buckets (public member function) | |